home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Demos
/
TrueBASIC Demo
/
User's Guide
/
GamesLib
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-06-20
|
302 b
|
22 lines
|
[
TEXT/TRUE
]
EXTERNAL
SUB Rolldice (sum_dice, num_dice)
LET sum_dice = 0
FOR i = 1 to num_dice
LET roll = Int(6*Rnd + 1)
LET sum_dice = sum_dice + roll
NEXT i
END SUB
DEF Coin$
IF Rnd < .5 then
LET Coin$ = "heads"
ELSE
LET Coin$ = "tails"
END IF
END DEF